runtime.special.kind (field)

15 uses

	runtime (current package)
		heapdump.go#L457: 				if sp.kind != _KindSpecialFinalizer {
		heapdump.go#L656: 			if sp.kind != _KindSpecialProfile {
		mgc.go#L1655: 		s.special.kind = _KindSpecialReachable
		mgcmark.go#L381: 				if sp.kind != _KindSpecialFinalizer {
		mgcsweep.go#L527: 				if tmp.kind == _KindSpecialFinalizer {
		mgcsweep.go#L540: 				if special.kind == _KindSpecialFinalizer || !hasFin {
		mgcsweep.go#L552: 			if siter.s.kind == _KindSpecialReachable {
		mheap.go#L1685: 	kind   byte     // kind of special
		mheap.go#L1723: 	kind := s.kind
		mheap.go#L1734: 		if offset == uintptr(x.offset) && kind == x.kind {
		mheap.go#L1739: 		if offset < uintptr(x.offset) || (offset == uintptr(x.offset) && kind < x.kind) {
		mheap.go#L1783: 		if offset == uintptr(s.offset) && kind == s.kind {
		mheap.go#L1817: 	s.special.kind = _KindSpecialFinalizer
		mheap.go#L1873: 	s.special.kind = _KindSpecialProfile
		mheap.go#L1919: 	switch s.kind {